home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetTextLocation.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  880b  |  42 lines

  1. /*
  2.  *--- PGetTextLocation.h --------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetTextLocation__
  10. #define __PGetTextLocation__
  11.  
  12.  
  13. class PGetTextLocation
  14. {
  15.  
  16. public:
  17.  
  18.     PGetTextLocation();
  19.     
  20.     unsigned long    nObjectID;
  21.     long            xAnchorBottom;
  22.     long            yAnchorBottom;
  23.     long            xAnchorTop;
  24.     long            yAnchorTop;
  25.     long            xRightTop;
  26.     long            yRightTop;
  27.     long            xRightBottom;
  28.     long            yRightBottom;
  29.     long            xRangeEndTop;
  30.     long            yRangeEndTop;
  31.     long            xRangeEndBottom;
  32.     long            yRangeEndBottom;
  33.     long            xLeftBottom;
  34.     long            yLeftBottom;
  35.     long            xLeftTop;
  36.     long            yLeftTop;    
  37. };
  38.  
  39. #endif
  40.  
  41. // end of PGetTextLocation.h
  42.